今天跟大家介紹兩篇 在線上讀書會 有關 reactNative 的主講
Chunghe Fang 主講 react native 實戰
https://www.youtube.com/watch?v=dxPbLiLcjWs
rick 主講 reactnative 起手式 + redux
https://www.youtube.com/watch?v=RLUqAgbSrPA
兩天篇都是起手式很適合新手學習,影片中 提到了如何安裝 及設定環境 也有在模擬器中如何除錯與hot reload 的常見功能
學習心得
reactnative 只要會 react 其他的就只是元件的熟悉度問題了,而且可以同時把ios 與 android 的code 抽離 替換某些代碼 即可發布在兩種平台真是一個很讚值得投資的語言歐
如果開發ios 一定也是需要 mac 主機,reactnative 產生的code則是原生code 所以效能比起用一個webcompenent 把網頁包起來的效能差別人很多
https://facebook.github.io/react-native/ 官方網址
是不是跟reactjs 很像呢
import React, { Component } from 'react';
import { Text, View } from 'react-native';
class WhyReactNativeIsSoGreat extends Component {
render() {
return (
<View>
<Text>
If you like React on the web, you'll like React Native.
</Text>
<Text>
You just use native components like 'View' and 'Text',
instead of web components like 'div' and 'span'.
</Text>
</View>
);
}
}
影片中的教學都很詳細,如果有問題都可以隨時加入社團討論另外 最近也幫粉絲團加上了chatbot 功能
對線上讀書會有興趣的朋友也可以來問問chatbot還有哪些讀書會歐
https://www.facebook.com/readbook999/